func strconv.lower
20 uses
strconv (current package)
atof.go#L135: if i < len(s) && lower(s[i]) == 'e' {
atof.go#L194: if i+2 < len(s) && s[i] == '0' && lower(s[i+1]) == 'x' {
atof.go#L237: case base == 16 && 'a' <= lower(c) && lower(c) <= 'f':
atof.go#L242: mantissa += uint64(lower(c) - 'a' + 10)
atof.go#L268: if i < len(s) && lower(s[i]) == expChar {
atoi.go#L16: func lower(c byte) byte {
atoi.go#L92: case len(s) >= 3 && lower(s[1]) == 'b':
atoi.go#L95: case len(s) >= 3 && lower(s[1]) == 'o':
atoi.go#L98: case len(s) >= 3 && lower(s[1]) == 'x':
atoi.go#L141: case 'a' <= lower(c) && lower(c) <= 'z':
atoi.go#L142: d = lower(c) - 'a' + 10
atoi.go#L298: if len(s) >= 2 && s[0] == '0' && (lower(s[1]) == 'b' || lower(s[1]) == 'o' || lower(s[1]) == 'x') {
atoi.go#L301: hex = lower(s[1]) == 'x'
atoi.go#L307: if '0' <= s[i] && s[i] <= '9' || hex && 'a' <= lower(s[i]) && lower(s[i]) <= 'f' {
ftoa.go#L547: if fmt == lower(fmt) {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |